/* Desktop Transport Section Styles */
body:not(.is-mobile) #transport-tobacco-section {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 63px;
}

#transport-tobacco-section.bordered-section {
    border-top: 1.8px solid #862733;
    border-bottom: 1.8px solid #862733;
}

.transport-tobacco-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0 15px;
    height: 100%;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    gap: 20px;
}

.transport-icon-column {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 48px;
    min-width: 48px;
    height: 100%;
}

.transport-text-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 0 1 auto;
    padding: 0;
    gap: 4px;
}

.transport-icon {
    margin: 0;
    width: 24px;
    height: 24px;
}

.transport-title-row {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

.transport-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E1E1E;
    margin-right: 8px;
}

.transport-arrow-icon {
    width: 18px;
    height: 18px;
    margin: 0;
    transform: rotate(180deg);
}

/* In details page, rotate the arrow differently */
#transport-tobacco-section-details .transport-arrow-icon {
    transform: rotate(0deg);
}

.transport-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1E1E1E;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Transport Section - No Borders Variant */
.transport-tobacco-section-no-borders {
    width: 100%;
    height: 96px;
    background-color: #FFBF3E;
    border-top: none;
    border-bottom: none;
}

.transport-tobacco-section-no-borders .transport-tobacco-content {
    padding-left: 15px;
    padding-right: 15px;
}

.transport-tobacco-section-no-borders .transport-description {
    color: #000000;
} 