/**
 * Press Mentions Styles
 * Restored from previous version for About page
 */

/* Press Mentions Container */
.c-card-container {
 display: -ms-flexbox;
 display: flex;
 -ms-flex-direction: row;
 flex-direction: row;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 -ms-flex-pack: center;
 justify-content: center;
 margin: 2rem 0;
}

/* Individual Press Card */
.c-card {
 border: 1px solid lightgray;
 border-radius: 2rem;
 margin: 0.5rem;
 padding: 1.75rem;
 text-align: left;
 width: 300px;
 transition: all 0.3s ease;
 background: white;
}

.c-card:hover {
 border: 1px solid #206fd6;
 box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.1);
 transform: scale(1.025);
}

/* Company Name */
.c-card-company {
 font-size: 2rem;
 font-weight: bold;
 width: 100%;
 color: #333;
 margin-bottom: 0.5rem;
}

/* Date */
.c-card-date {
 color: #808080;
 font-size: 1.5rem;
 margin-bottom: 1rem;
}

/* Quote Text */
.c-card-quote {
 font-size: 1.5rem;
 font-style: italic;
 color: #555;
 line-height: 1.6;
}

/* Quotation Mark */
.c-card-quotation {
 font-size: 3rem;
 font-weight: bold;
 color: #206fd6;
 line-height: 1;
 margin-bottom: 0.5rem;
}

/* Link Styling */
.c-card a {
 text-decoration: none;
 color: inherit;
}

.c-card a:hover {
 text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
 .c-card-container {
 padding: 0 1rem;
 }
 
 .c-card {
 width: 100%;
 max-width: 400px;
 margin: 0.5rem auto;
 }
 
 .c-card-company {
 font-size: 1.5rem;
 }
 
 .c-card-date {
 font-size: 1.2rem;
 }
 
 .c-card-quote {
 font-size: 1.2rem;
 }
 
 .c-card-quotation {
 font-size: 2.5rem;
 }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
 .c-card {
 background: #2a2a2a;
 border-color: #444;
 }
 
 .c-card:hover {
 border-color: #60cfff;
 box-shadow: 0px 0px 25px 5px rgba(96, 207, 255, 0.2);
 }
 
 .c-card-company {
 color: #fff;
 }
 
 .c-card-date {
 color: #aaa;
 }
 
 .c-card-quote {
 color: #ddd;
 }
 
 .c-card-quotation {
 color: #60cfff;
 }
}