@charset "utf-8";
/* CSS Document */

.policy-section {
            font-family: 'DM Sans', sans-serif;
            background: #fff;
            padding: 2em;
            color: #333;
            box-sizing: border-box;
        }

        .policy-section * {
            box-sizing: border-box;
        }

        .policy-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .policy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5em;
            margin-bottom: 2em;
        }

        .policy-document-card {
            background: #F4F7F6;
            border-radius: 12px;
            padding: 1.5em;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(129, 149, 149, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .policy-document-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #83754e, #819595);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .policy-document-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .policy-document-card:hover::before {
            transform: scaleX(1);
        }

        .policy-card-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1em;
        }

        .policy-card-icon {
            width: 48px;
            height: 48px;
            background: #83754e;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1em;
            flex-shrink: 0;
        }

        .policy-card-icon i {
            color: white;
            font-size: 1.2em;
        }

        .policy-card-info h3 {
			font-family: 'EB Garamond', serif;
			font-size: 1.3em;
			font-weight: 500;
			color: #83754e;
			margin: 0 0 0.6em 0;  /* top right bottom left */
			line-height: 1.3;
		}

        .policy-card-meta {
            display: flex;
            gap: 1em;
            font-size: 0.85em;
            color: #819595;
            margin-bottom: 0.8em;
        }

        .policy-card-meta span {
            display: flex;
            align-items: center;
            gap: 0.3em;
        }

        .policy-card-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.2em;
            font-size: 0.95em;
        }

        .policy-card-actions {
            display: flex;
            gap: 0.8em;
            flex-wrap: wrap;
        }

        .policy-btn {
            padding: 0.6em 1.2em;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9em;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5em;
            border: 1px solid #819595;
            cursor: pointer;
            background: white;
            color: #819595;
        }

        .policy-btn:hover {
            background: #819595;
            color: white;
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .policy-section {
                padding: 1em;
            }

            .policy-grid {
                grid-template-columns: 1fr;
            }

            .policy-card-actions {
                flex-direction: column;
            }

            .policy-btn {
                justify-content: center;
            }
        }