/* TEST 2026-06-20 11:59 PM */



.eth-score-table {
    border: 10px solid lime !important;
}



/* ==========================================================
   CDSS Crystal Framework
   Clustered Stone & Crystals
   Version 1.0
   ========================================================== */

:root {

    --csc-blue: #1f4e79;
    --csc-gold: #d4af37;
    --csc-green: #4f8b3a;
    --csc-red: #a63232;

    --csc-text: #333333;
    --csc-muted: #666666;

    --csc-border: #dddddd;
    --csc-light: #f8f8f8;
    --csc-white: #ffffff;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.10);

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;

    --content-width: 1200px;

}

/* ==========================================================
   GENERAL
   ========================================================== */

.crystal-page,
.country-page,
.locality-page,
.mine-page,
.character-page,
.ethical-report-page,
.course-page,
.lead-magnet-page {

    max-width: var(--content-width);
    margin: 0 auto;
    padding: var(--space-xl);

}

.cdss-content {

    margin-bottom: 40px;
    line-height: 1.8;

}

/* ==========================================================
   HERO
   ========================================================== */

.crystal-hero {

    padding-bottom: 20px;
    border-bottom: 2px solid var(--csc-border);
    margin-bottom: 30px;

}

.crystal-hero h1 {

    margin-bottom: 8px;

}

.scientific-name {

    color: var(--csc-muted);
    font-style: italic;

}

/* ==========================================================
   ENTITY SECTIONS
   ========================================================== */

.entity-section {

    margin-bottom: 40px;

}

.entity-section h2 {

    margin-bottom: 12px;
    color: var(--csc-blue);

}

.entity-section ul {

    margin-left: 20px;

}

/* ==========================================================
   KNOWLEDGE GRAPH CARD
   ========================================================== */

.kg-sidebar-card {

    background: var(--csc-light);
    border: 1px solid var(--csc-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);

}

.kg-sidebar-card h3 {

    margin-top: 0;
    color: var(--csc-blue);
    border-bottom: 1px solid var(--csc-border);
    padding-bottom: 10px;

}

.kg-section {

    margin-bottom: 20px;

}

.kg-section:last-child {

    margin-bottom: 0;

}

.kg-section h4 {

    margin-bottom: 8px;
    font-size: 1rem;

}

.kg-section ul {

    margin-left: 20px;

}

.kg-section li {

    margin-bottom: 6px;

}

.kg-section a {

    text-decoration: none;
    color: var(--csc-blue);

}

.kg-section a:hover {

    color: var(--csc-gold);

}

/* ==========================================================
   INFOBOX
   ========================================================== */

.cdss-infobox {

    background: var(--csc-light);
    border: 1px solid var(--csc-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);

}

.cdss-infobox h3 {

    margin-top: 0;

}

/* ==========================================================
   ETHICAL SCORECARD
   ========================================================== */

.ethical-scorecard {

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 16px;

}

.ethical-score {

    background: white;
    border: 1px solid var(--csc-border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;

}

.ethical-score-label {

    font-size: .85rem;
    color: var(--csc-muted);

}

.ethical-score-value {

    font-size: 2rem;
    font-weight: bold;
    color: var(--csc-blue);

}

/* ==========================================================
   CHARACTER CARDS
   ========================================================== */

.character-card {

    background: white;
    border: 1px solid var(--csc-border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);

}

/* ==========================================================
   COURSE / LEAD MAGNET CARDS
   ========================================================== */

.resource-card {

    background: white;
    border-left: 5px solid var(--csc-gold);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);

}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 768px) {

    .crystal-page,
    .country-page,
    .locality-page,
    .mine-page,
    .character-page,
    .ethical-report-page,
    .course-page,
    .lead-magnet-page {

        padding: 20px;

    }

    .ethical-scorecard {

        grid-template-columns: 1fr;

    }

}





.ways-panel {

    margin-top: 50px;
    margin-bottom: 50px;

}

.ways-grid {

    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}

.way-card {

    background:white;
    border:1px solid #ddd;
    border-radius:12px;
    padding:20px;

    box-shadow:0 2px 8px rgba(0,0,0,.08);

}

.way-card h3 {

    margin-top:0;

}

.way-card a {

    text-decoration:none;

}





/* ==========================================================
   CDSS LAYOUT WRAPPER
   ========================================================== */

.cdss-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 3fr)
        minmax(280px, 1fr);

    gap: 32px;

    margin-top: 32px;

}

.cdss-main {

    min-width: 0;

}

.cdss-sidebar {

    position: sticky;

    top: 24px;

    align-self: start;

}

/* Tablet */

@media (max-width: 992px) {

    .cdss-layout {

        grid-template-columns: 1fr;

    }

    .cdss-sidebar {

        position: static;

    }

}





.eth-score-table {

width:100%;

border-collapse:collapse;

margin:20px 0;

}

.eth-score-table td {

padding:10px;

border-bottom:1px solid #ddd;

}

.eth-score-table td:first-child {

font-weight:bold;

width:70%;

}

.eth-score-table td:last-child {

text-align:center;

font-size:1.1em;

font-weight:bold;

}





.quick-facts-box {

background:#f8f9fa;

border:1px solid #ddd;

padding:20px;

margin:20px 0;

border-radius:8px;

}

.quick-facts-box ul {

margin:0;

padding-left:20px;

}





.ethical-scorecard {

display:grid;

grid-template-columns:repeat(2,minmax(200px,1fr));

gap:12px;

margin:20px 0;

}

.score-item {

background:white;

border:1px solid #ddd;

padding:15px;

border-radius:8px;

}

.score-item strong {

font-size:1.4rem;

float:right;

}

.ethical-scorecard h2 {

grid-column: 1 / -1;

margin-bottom:10px;

}





.cdss-layout {

display:grid;

grid-template-columns: 2fr 1fr;

gap:30px;

margin-top:30px;

}

.cdss-main {

min-width:0;

}

.cdss-sidebar {

display:flex;

flex-direction:column;

gap:20px;

}

@media(max-width:900px){

.cdss-layout{

grid-template-columns:1fr;

}

}





.ways-seeing-panel {

background:#f8f9fa;

padding:20px;

border-radius:10px;

border:1px solid #ddd;

}

.ways-grid {

display:flex;

flex-direction:column;

gap:15px;

}

.ways-card {

background:white;

border:1px solid #ddd;

padding:15px;

border-radius:8px;

transition:.2s;

}

.ways-card:hover {

box-shadow:0 3px 12px rgba(0,0,0,.12);

}

.ways-card h3 {

margin-top:0;

}

.ways-link {

font-weight:bold;

text-decoration:none;

}





.cta-box {

background:#f8f9fa;

border:1px solid #ddd;

border-radius:10px;

padding:20px;

}

.cta-box h2 {

margin-top:0;

}

.cta-button {

display:inline-block;

padding:10px 18px;

background:#1e73be;

color:white;

border-radius:6px;

text-decoration:none;

font-weight:bold;

}

.cta-button:hover {

background:#155a94;

}





.crystal-layout {

display:grid;

grid-template-columns:minmax(0,2fr) minmax(280px,1fr);

gap:30px;

align-items:start;

}

.crystal-main {

min-width:0;

}

.crystal-sidebar {

display:flex;

flex-direction:column;

gap:20px;

}

.crystal-hero {

background:#f8f9fa;

border:1px solid #ddd;

border-radius:10px;

padding:24px;

margin-bottom:24px;

}

.crystal-hero h1 {

margin-top:0;

margin-bottom:10px;

}

.crystal-tagline {

font-size:1.1rem;

color:#555;

margin-bottom:0;

}

.quick-facts-box {

background:#f8f9fa;

border:1px solid #ddd;

border-radius:10px;

padding:20px;

}

.quick-facts-box ul {

list-style:none;

padding-left:0;

margin:0;

}

.quick-facts-box li {

padding:6px 0;

border-bottom:1px solid #eee;

}

.quick-facts-box li:last-child {

border-bottom:none;

}

@media (max-width: 900px) {

.crystal-layout {

grid-template-columns:1fr;

}

}