/* Fundraiser Info Section Styles */
.fundraiser-info-section {
    margin-bottom: 32px;
}

.fundraiser-image-container {
    position: relative;
    width: 100%;
    height: 470px !important;
    margin-bottom: 24px;
    border-radius: 5px;
    overflow: hidden;
}

.fundraiser-main-image {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
}

.fundraiser-placeholder-image {
    width: 100%;
    height: 470px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
}

.fundraiser-urgent-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--combo-donate-accent);
    color: white;
    padding: 12px 24px;
    border-bottom-right-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(248, 124, 46, 0.3);
}

.fundraiser-main-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
    margin: 0 0 30px 0;
}


.reason-section{
    font-size: 0.95rem;
    color: #333;
    display: flex;
    gap: 5px;
    flex-direction: column;
    padding-bottom: 30px;
}
.reason-section span strong {
    font-weight: bold;
}

.medical-info {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.medical-badges {
    margin-bottom: 12px;
}

.medical-badge {
    display: inline-block;
    background: #e8f5e8;
    color: #2d5a2d;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 6px;
}

.organizer-info {
    font-size: 0.95rem;
    color: #475467;
}

.organizer-info strong {
    color: #333;
}

.person-details {
    margin-bottom: 32px;
    background-color: #F6EBDD;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    
}

.person-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #333;
}

.person-item img {
    flex-shrink: 0;
    width: 21px;
    height: 25px;
}

.support-section {
    border: 1px solid #e8f5e8;
    border-radius: 5px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow:  0 4px 15px rgba(0, 0, 0, 0.1);
}

.support-icon {
    flex-shrink: 0;
    background: white;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.support-content p {
    margin: 0 0 12px 0;
    color: #475467;
    font-size: 0.95rem;
    line-height: 1.5;
}

.single-description p{
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.single-description h1{
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0;
}

.support-link {
    color: var(--combo-donate-accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.support-link:hover {
    color: var(--combo-donate-primary);
}

.support-link svg {
    transition: transform 0.2s ease;
}

.support-link:hover svg {
    transform: translateX(2px);
}

.fundraiser-progress{
    padding: 0 0 5px 0 !important;
    margin-bottom: 40px;
    border-bottom: 1px solid #D0D5DD;
}

.side-title{
    font-family: Oswald, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0;
}

.side-description{
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    padding-bottom: 40px;
}

.widget-button-section{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.progress-amount {
    justify-content: center;
    font-family: Oswald, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0;
}

/* Donation button as link */
.donate-main-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    background: var(--combo-donate-accent);
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin: 0 !important;
}

.donate-main-btn:hover {
    background: var(--combo-donate-primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 124, 46, 0.3);
}

.donate-main-btn:visited,
.donate-main-btn:focus {
    color: white;
    text-decoration: none;
}

/* Responsive styles for info section */
@media (max-width: 768px) {
    .fundraiser-main-title {
        font-size: 1.5rem;
    }

    .fundraiser-image-container {
        height: 300px !important;
    }
    
    .fundraiser-main-image {
        height: 300px;
    }
    
    .support-section {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .support-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .fundraiser-urgent-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .fundraiser-main-title {
        font-size: 1.3rem;
    }
    
    .person-item {
        font-size: 0.9rem;
    }
    
    .support-section {
        padding: 16px;
        margin: 0 -20px;
        border-radius: 0;
    }
}