| .virtualMeetup { |
| padding: 4rem 0; |
| background-color: #fff; |
| } |
| |
| .header { |
| display: flex; |
| justify-content: space-between; |
| align-items: flex-start; |
| gap: 2rem; |
| margin-bottom: 3rem; |
| } |
| |
| .description { |
| flex: 1; |
| } |
| |
| .description h3 { |
| font-size: 1.5rem; |
| font-weight: 500; |
| margin-bottom: 1rem; |
| color: #333; |
| } |
| |
| .description p { |
| font-size: 1rem; |
| line-height: 1.6; |
| color: #666; |
| margin: 0; |
| } |
| |
| .action { |
| flex-shrink: 0; |
| } |
| |
| .content { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
| gap: 2rem; |
| } |
| |
| .column h4 { |
| font-size: 1.25rem; |
| font-weight: 500; |
| margin-bottom: 1rem; |
| color: #333; |
| } |
| |
| .column p { |
| font-size: 0.95rem; |
| line-height: 1.6; |
| color: #666; |
| margin: 0; |
| } |
| |
| .upcoming { |
| background-color: #f8f9fa; |
| padding: 1.5rem; |
| border-radius: var(--ai-radius-sm); |
| } |
| |
| .joinMessage h5 { |
| font-size: 1.1rem; |
| line-height: 1.5; |
| color: #333; |
| margin: 0; |
| } |
| |
| .recordings { |
| display: flex; |
| flex-direction: column; |
| gap: 1rem; |
| } |
| |
| .recordingLink { |
| display: block; |
| border-radius: var(--ai-radius-sm); |
| overflow: hidden; |
| transition: transform 0.2s ease, box-shadow 0.2s ease; |
| box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); |
| } |
| |
| .recordingLink:hover { |
| transform: translateY(-2px); |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); |
| } |
| |
| .thumbnail { |
| width: 100%; |
| height: auto; |
| display: block; |
| } |
| |
| .playlistButton { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| gap: 0.5rem; |
| margin-top: 0.5rem; |
| } |
| |
| .playlistButton svg { |
| width: 9px; |
| height: 10px; |
| } |
| |
| .meetupLogo { |
| width: 150px; |
| height: auto; |
| margin-bottom: 1.5rem; |
| } |
| |
| .learnMoreButton { |
| width: 100%; |
| } |
| |
| @media (max-width: 992px) { |
| .content { |
| grid-template-columns: 1fr 1fr; |
| } |
| } |
| |
| @media (max-width: 768px) { |
| .virtualMeetup { |
| padding: 2rem 0; |
| } |
| |
| .header { |
| flex-direction: column; |
| gap: 1.5rem; |
| } |
| |
| .action { |
| width: 100%; |
| } |
| |
| .action .button { |
| width: 100%; |
| text-align: center; |
| } |
| |
| .content { |
| grid-template-columns: 1fr; |
| gap: 2rem; |
| } |
| |
| .description p br, |
| .column p br, |
| .joinMessage h5 br { |
| display: none; |
| } |
| } |