.audience-option {
    padding: 1rem;
    border: 1px solid #CBBBA0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.audience-option:hover {
    background-color: rgba(203, 187, 160, 0.1);
    transform: translateY(-2px);
}

.audience-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.audience-label input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #CBBBA0;
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.audience-label input[type="radio"]:checked {
    border-color: #90684A;
    background-color: #90684A;
}

.audience-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.audience-label i {
    font-size: 1.25rem;
    color: #9D8E7D;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-label span {
    font-size: 16px;
    color: #2B2B2B;
    line-height: 1.2;
    flex-grow: 1;
}

.audience-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

@media (max-width: 768px) {
    .audience-option {
        padding: 0.75rem;
    }

    .audience-label {
        gap: 0.75rem;
    }

    .audience-label input[type="radio"] {
        width: 16px;
        height: 16px;
    }

    .audience-label i {
        font-size: 1rem;
    }

    .audience-label span {
        font-size: 14px;
    }
}
