.hero-row {
    align-items: center;
}
/* IWF Chicago Member Portal CSS - No Icons Version */

/* Main Content */
.iwf-main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Welcome Section */
.iwf-welcome-section {
    background: linear-gradient(to right, #ea7f1d, #d97706);
    border-radius: 1rem;
    color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.iwf-welcome-content {
    max-width: 48rem;
    margin: 0 auto;
}

.iwf-welcome-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.iwf-welcome-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.iwf-quick-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.iwf-quick-tool {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.iwf-quick-tool:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

.iwf-quick-tool:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.iwf-quick-tool-title {
    font-weight: 500;
    font-size: 0.875rem;
    color: #1f2937;
}

/* Primary Actions */
.iwf-section {
    margin-bottom: 3rem;
}

.iwf-section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.iwf-primary-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.iwf-action-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s ease;
}

.iwf-action-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.iwf-action-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.iwf-action-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.iwf-action-icon-container {
    border-radius: 0.5rem;
    padding: 1rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iwf-bg-orange { background-color: #ea7f1d; }
.iwf-bg-blue { background-color: #3b82f6; }
.iwf-bg-purple { background-color: #8b5cf6; }
.iwf-bg-gray { background-color: #6b7280; }

.iwf-action-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.iwf-action-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.iwf-action-link {
    display: inline-flex;
    align-items: center;
    color: #ea7f1d;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
}

.iwf-action-link:hover {
    color: #d97706;
}

/* Executive Circles Highlight */
.iwf-highlight-section {
    background: linear-gradient(to right, #f3e8ff, #dbeafe);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid #e5e7eb;
}

.iwf-highlight-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: center;
}

.iwf-highlight-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
}

.iwf-highlight-description {
    color: #374151;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.iwf-highlight-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.iwf-btn-primary {
    background-color: #8b5cf6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.iwf-btn-primary:hover {
    background-color: #7c3aed;
    color: white;
    text-decoration: none;
}

.iwf-btn-secondary {
    border: 1px solid #d1d5db;
    color: #7c3aed;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    background: white;
    transition: background-color 0.3s ease;
}

.iwf-btn-secondary:hover {
    background-color: #f3e8ff;
    color: #7c3aed;
    text-decoration: none;
}

.iwf-highlight-note {
    font-size: 0.875rem;
    color: #7c3aed;
    margin-top: 1rem;
    text-align: center;
}

/* Additional Resources */
.iwf-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.iwf-resource-card {
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
    text-align: center;
}

.iwf-resource-card:hover {
    border-color: #fed7aa;
}

.iwf-resource-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.iwf-resource-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.iwf-resource-link {
    color: #ea7f1d;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.iwf-resource-link:hover {
    color: #d97706;
    text-decoration: none;
}

/* Responsive Design */
@media (min-width: 640px) {
    .iwf-highlight-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .iwf-primary-actions {
        gap: 1.5rem;
    }
    
    .iwf-action-card {
        padding: 1.5rem;
    }
    
    .iwf-action-icon-container {
        width: 4rem;
        height: 4rem;
    }
    
    .iwf-action-title {
        font-size: 1.25rem;
    }
    
    .iwf-action-description {
        font-size: 1rem;
    }
    
    .iwf-action-link {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .iwf-primary-actions {
        gap: 2rem;
    }
    
    .iwf-action-card {
        padding: 2rem;
    }
    
    .iwf-action-icon-container {
        width: 5rem;
        height: 5rem;
    }
}

@media (max-width: 768px) {
    .iwf-welcome-title {
        font-size: 2rem;
    }
}